d1388c3a4586e59650c9450e20a4affc71fa041f,processor/src/main/java/org/mapstruct/ap/internal/model/MappingMethod.java,MappingMethod,MappingMethod,#Method#List#List#List#,107
Before Change
protected MappingMethod(Method method, List<LifecycleCallbackMethodReference> beforeMappingReferences,
List<LifecycleCallbackMethodReference> afterMappingReferences,
List<ForgedMethod> forgedMethods) {
this( method, method.getParameters(), method.getParameterNames(), beforeMappingReferences,
afterMappingReferences, forgedMethods );
}
After Change
protected MappingMethod(Method method, List<LifecycleCallbackMethodReference> beforeMappingReferences,
List<LifecycleCallbackMethodReference> afterMappingReferences,
List<ForgedMethod> forgedMethods) {
this( method, method.getParameters(), new ArrayList<String>( method.getParameterNames() ),
beforeMappingReferences, afterMappingReferences, forgedMethods );
}